home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #4 / Amiga Plus CD - 2000 - No. 4.iso / Tools / WWW / Charon / Rexx / ChangeProxy.rexx < prev    next >
OS/2 REXX Batch file  |  2000-03-23  |  258b  |  15 lines

  1. /* Example: Changes proxy for all selected URLs */
  2.  
  3. NewProxy = "http://www.newproxy.net:8080/"
  4.  
  5. OPTIONS RESULTS
  6.  
  7. GETFIRSTURL SELECTED
  8. ID=RESULT
  9.  
  10. DO WHILE ID ~= 0
  11.     SET 'ID ' || ID || ' PROXY ' || NewProxy
  12.     GETNEXTURL 'ID ' || ID || ' SELECTED'
  13.     ID=RESULT
  14. END
  15.